home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 132
/
Vol 132.iso
/
games
/
nameless.swf
/
scripts
/
DefineSprite_1837
/
frame_1
/
DoAction.as
Wrap
Text File
|
2011-06-09
|
264b
|
18 lines
if(!setVars)
{
var health = 100;
var setVars = true;
}
var onEnterFrame = function()
{
if(health > _root.health)
{
health -= 1;
}
else if(health < _root.health)
{
health += 1;
}
gotoAndStop(101 - health);
};